home *** CD-ROM | disk | FTP | other *** search
/ BBS in a Box 3 / BBS in a box - Trilogy III.iso / Files / Prog / B-C / Berkeley-yacc-mpw / test / error.y < prev    next >
Encoding:
Text File  |  1991-10-14  |  117 b   |  7 lines  |  [TEXT/MPS ]

  1. %%
  2. S: error
  3. %%
  4. main(){printf("yyparse() = %d\n",yyparse());}
  5. yylex(){return-1;}
  6. yyerror(s)char*s;{printf("%s\n",s);}
  7.